home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Aminet 2
/
Aminet AMIGA CDROM (1994)(Walnut Creek)[Feb 1994][W.O. 44790-1].iso
/
Aminet
/
dev
/
e
/
epp_v1_1.lha
/
EPP
/
PModules
/
listClear.e
< prev
next >
Wrap
Text File
|
1993-06-26
|
234b
|
14 lines
OPT TURBO
PROC listClear (theList)
DEF listCurrent
listCurrent := ^theList
WHILE listCurrent <> NIL
Dispose (listCurrent)
listCurrent := Next (listCurrent)
ENDWHILE
DisposeLink (^theList)
ENDPROC
/* listClear */